Código fuente de 'Detecta el navegador.asp'

<html>
<head>
<title>Detecta el navegador - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>

<body style="font-family: Arial; font-size: 11pt">
<p align="center"><b><font size="3">Detecta el navegador</font></b>
<br></p>

<%
If InStr(Request.ServerVariables("HTTP_USER_AGENT"),"MSIE") then
	Response.Write("Estás utilizando Internet Explorer")
ElseIf InStr(Request.ServerVariables("HTTP_USER_AGENT"),"Mozilla") then
	Response.Write("Estas navegando con el NetScape")
Else
	Response.Write("No navegas ni con NetScape ni con Explorer")
End If
%>

</p>



</body>
</html>